for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import crypto from 'crypto';
import Generator from './Base';
/**
* Generates a random uuid.
* @returns {string} uuid
* @generator
*/
export default class UUIDGenerator extends Generator {
generate() {
return crypto.randomUUID();
}